create sequence "PaymentMapHelper_PaymentMapId_seq"

------------------------------------------------------------------------------------------------------

create table "PaymentMapHelper"(
	"PaymentMapHelperId" integer DEFAULT nextval('"PaymentMapHelper_PaymentMapId_seq"'::regclass),
    "PaymentInitiationLogId" integer,
    "BillId" integer,
    CONSTRAINT "PaymentMapHelper_pkey" PRIMARY KEY ("PaymentMapHelperId"),
    CONSTRAINT "FK_PaymentMapHelper_PaymentInitiationLogId" FOREIGN KEY ("PaymentInitiationLogId")
        REFERENCES public."PaymentInitiationLog" ("PaymentInitiationLogId") MATCH SIMPLE
        ON UPDATE NO ACTION
        ON DELETE CASCADE
   
)